func runtime.bucketMask

24 uses

	runtime (current package)
		map.go#L191: func bucketMask(b uint8) uintptr {
		map.go#L419: 	m := bucketMask(h.B)
		map.go#L480: 	m := bucketMask(h.B)
		map.go#L524: 	m := bucketMask(h.B)
		map.go#L609: 	bucket := hash & bucketMask(h.B)
		map.go#L725: 	bucket := hash & bucketMask(h.B)
		map.go#L852: 	it.startBucket = r & bucketMask(h.B)
		map.go#L938: 				if hash&bucketMask(it.B) != checkBucket {
		map.go#L1022: 	markBucketsEmpty(h.buckets, bucketMask(h.B))
		map.go#L1556: 			dstBmap := (*bmap)(add(dst.buckets, (uintptr(i)&bucketMask(dst.B))*uintptr(t.BucketSize)))
		map_fast32.go#L30: 		m := bucketMask(h.B)
		map_fast32.go#L70: 		m := bucketMask(h.B)
		map_fast32.go#L114: 	bucket := hash & bucketMask(h.B)
		map_fast32.go#L204: 	bucket := hash & bucketMask(h.B)
		map_fast32.go#L290: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L30: 		m := bucketMask(h.B)
		map_fast64.go#L70: 		m := bucketMask(h.B)
		map_fast64.go#L114: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L204: 	bucket := hash & bucketMask(h.B)
		map_fast64.go#L290: 	bucket := hash & bucketMask(h.B)
		map_faststr.go#L81: 	m := bucketMask(h.B)
		map_faststr.go#L176: 	m := bucketMask(h.B)
		map_faststr.go#L225: 	bucket := hash & bucketMask(h.B)
		map_faststr.go#L319: 	bucket := hash & bucketMask(h.B)